home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / account_glftpd.nasl < prev    next >
Text File  |  2005-01-14  |  1KB  |  50 lines

  1. #
  2. # This script was written by Renaud Deraison
  3. #
  4. #
  5. # See the Nessus Scripts License for details
  6. #
  7.  
  8. account = "glftpd";
  9. password = "glftpd";
  10.  
  11. if(description)
  12. {
  13.  script_id(11258);
  14.  script_version ("$Revision: 1.4 $");
  15.  script_cve_id("CAN-1999-0502");
  16.  
  17.  script_name(english:string("Default password (", password, ") for ", account));
  18.          
  19.  
  20.  script_description(english:string("
  21. The account '", account, "' has the password ", password, "
  22. An attacker may use it to gain further privileges on this system
  23.  
  24. Risk factor : High
  25. Solution : Set a password for this account or disable it"));
  26.          
  27. script_summary(english:"Logs into the remote host",
  28.            francais:"Translate");
  29.  
  30.  script_category(ACT_GATHER_INFO);
  31.  
  32.  script_family(english:"Default Unix Accounts");
  33.  
  34.  script_copyright(english:"This script is Copyright (C) 2003 Renaud Deraison");
  35.  
  36.  
  37.  script_dependencie("find_service.nes");
  38.  script_require_ports("Services/telnet", 23, "Services/ssh", 22);
  39.  exit(0);
  40. }
  41.  
  42. #
  43. # The script code starts here : 
  44. #
  45. include("ssh_func.inc");
  46. include("default_account.inc");
  47.  
  48. port = check_account(login:account, password:password);
  49. if(port)security_hole(port);
  50.